home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 12 / CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso / CUCD / Games / DestructivePoker / sources / sources.lha / poker.h < prev    next >
C/C++ Source or Header  |  1997-02-13  |  589b  |  29 lines

  1. /*
  2.         poker.h (useles color definitions)
  3.  
  4.         V1.00 - 031196  Kimmo Teräväinen
  5.         -----   ------  ----------------
  6.         V0.01   031196  Made
  7.  
  8. */
  9. #ifndef DC1_POKER_POKER
  10. #define DC1_POKER_POKER
  11.  
  12. #ifdef _Windows
  13. #else
  14.  
  15. #include <exec/types.h>
  16.  
  17. const UWORD DETAIL_PEN        = 1;
  18. const UWORD BLOCK_PEN         = 2;
  19. const UWORD TEXT_PEN          = 1;
  20. const UWORD SHINE_PEN         = 2;
  21. const UWORD SHADOW_PEN        = 1;
  22. const UWORD FILL_PEN          = 3;
  23. const UWORD FILLTEXT_PEN      = 1;
  24. const UWORD BACKGROUND_PEN    = 0;
  25. const UWORD HIGHLIGHTTEXT_PEN = 2;
  26. #endif
  27.  
  28. #endif
  29.